home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Output / VSTaudiooutput.h < prev   
C/C++ Source or Header  |  2005-03-13  |  2KB  |  58 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   VSTaudiooutput.h - Audio output for VST
  5.   Copyright (C) 2002 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22. #ifndef VST_AUDIO_OUTPUT_H
  23. #define VST_AUDIO_OUTPUT_H
  24.  
  25. #include <pthread.h>
  26.  
  27. #include "../globals.h"
  28. #include "../Misc/Master.h"
  29. #include "../UI/MasterUI.h"
  30.  
  31. #include "../../../vstsdk2/source/common/audioeffectx.h"
  32.  
  33. class VSTSynth:public AudioEffectX{
  34.     public:
  35.     VSTSynth (audioMasterCallback audioMaster);
  36.     ~VSTSynth();
  37.     
  38.     virtual void process (float **inputs, float **outputs, long sampleframes);
  39.     virtual void processReplacing (float **inputs, float **outputs, long sampleframes);
  40.     virtual long processEvents(VstEvents *events);//this is used for Midi input
  41.     virtual long int canDo(char *txt);
  42.     virtual bool getVendorString(char *txt);
  43.     virtual bool getProductString(char *txt);
  44.     virtual void resume();
  45.         
  46.     virtual long getChunk(void** data,bool isPreset=false);
  47.     virtual long setChunk(void *data,long size,bool isPreset=false);        
  48.  
  49.     MasterUI *ui;
  50.     int Pexitprogram;
  51.  
  52.         Master *vmaster;
  53.     pthread_t thr;
  54. };
  55.  
  56. #endif
  57.  
  58.